home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Objrepos / OKCANCL1.PAS < prev    next >
Pascal/Delphi Source File  |  2001-05-22  |  396b  |  27 lines

  1. unit OKCANCL1;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TOKBottomDlg = class(TForm)
  10.     OKBtn: TButton;
  11.     CancelBtn: TButton;
  12.     Bevel1: TBevel;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   OKBottomDlg: TOKBottomDlg;
  21.  
  22. implementation
  23.  
  24. {$R *.dfm}
  25.  
  26. end.
  27.